home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
tools
/
gcc
/
gcc270cp.lha
/
gnu
/
lib
/
g++-include
/
swap.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-07-28
|
133 b
|
4 lines
/* From Ron Guillmette; apparently needed for Hansen's code */
#define swap(a,b) ({ typeof(a) temp = (a); (a) = (b); (b) = temp; })